home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
wb
/
czesc_2
/
iconextras
/
rexx
/
makelink.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-01-13
|
388b
|
10 lines
/* Make link */
parse arg filename
address command
filename=strip(filename,'B','"') /* remove quotes */
filename=strip(filename) /* remove spaces */
filename=strip(filename,'T','/') /* Finally, remove trailing slash */
'makelink' """"filename".link""" """"filename""" force" /* add quotes */
'copyicon' """"filename".info""" """"filename".link.info""" /* add quotes */
exit